home *** CD-ROM | disk | FTP | other *** search
/ Pink Daily - The Pink Days / Pink Daily - The Pink Days.iso / mac / PinkData / RDa1.dir / 00029_Script_29 < prev    next >
Text File  |  1995-08-15  |  458b  |  31 lines

  1. on setVO
  2.   set the volume of sound 1 = 200
  3. end
  4.  
  5. on mainBGM
  6.   if not soundBusy(1) then
  7.     sound playFile 1,"mainm.AIF"
  8.     setVO
  9.   end if
  10. end
  11.  
  12. on clickSE
  13.   --  puppetSound "SEclick.AIF"
  14.   sound playFile 2,"SEclick.AIF"
  15.   sound stop 1
  16. end
  17.  
  18. on photoBGM
  19.   if not soundBusy(1) then
  20.     sound playFile 1, "slide.AIF"
  21.     setVO
  22.   end if
  23. end
  24.  
  25. on intBGM
  26.   if not soundBusy(1) then
  27.     sound playFile 1,"intv.AIF"
  28.     setVO
  29.   end if
  30. end
  31.